| class AudioWriterAbstract audio file writer.Visibility | Public | Modifiers | abstract | Extends | IDisposable |
Public functionsConstructor AudioWriter(BinaryWriter writer, int channelCount, long length, int sampleRate, BitDepth bits) | Abstract audio file writer. | Constructor AudioWriter(string path, int channelCount, long length, int sampleRate, BitDepth bits) | Abstract audio file writer. | void Dispose() | Close the writer. | void Write(float[] samples) | Write the entire mono file, including the header. | void Write(float[][] samples) | Write the entire multichannel file. | void WriteBlock(float[][] samples, long from, long to) | Write a block of multichannel samples. | void WriteChannelLimitedBlock(float[] samples, int channelLimit, int channels, long from, long to) | Write the first selected channels of a block of mono or interlaced samples. | void WriteForEachChannel(float[] samples, int channelCount) | Writes the to be played back channel after channel. | void WriteOffset(float[][] samples, int period = -1) | Writes the to be played back channel after channel. |
Public static functionsPublic propertiesPublic variablesProtected variablesBinaryWriter writer | File writer object. |
|